home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 June: Reference Library / Dev.CD Jun 00 RL Disk 1.toast / pc / technical documentation / develop / additional articles / developing symbiotic apps / symbiotic samples / symbiotic server source / fractal daemon / makefile.sample < prev    next >
Encoding:
Makefile  |  1997-01-13  |  499 b   |  25 lines

  1. PROGRAM    = fractald
  2.  
  3. OBJS        = mandel.o misc.o handlers.o
  4. LIBS        = -lae -lat -lm
  5. HEADERS        = mandel.h misc.h version.h AUXAESuite.h
  6. INCFLAGS    = -I/usr/include/mac
  7.  
  8. DEBUG        = -D_DEBUG=0 -w
  9. OSVERSION    = -DAIX4_x
  10.  
  11. CFLAGS        = ${DEBUG} ${OSVERSION} -D_ALL_SOURCE -DSYS_V \
  12.         -qcpluscmt -qfullpath -qmacpstr -qtune=604
  13.  
  14.  
  15. all : $(PROGRAM)
  16.  
  17. clean:
  18.     rm -f $(PROGRAM) $(OBJS)
  19.  
  20. $(PROGRAM) : $(OBJS)
  21.     $(CC) -o $@ $(LDFLAGS) $(OBJS) $(LIBS)
  22.  
  23. $(OBJS) : $(@F:.o=.c) $(HEADERS)
  24.     $(CC) -c -o $@ $(CFLAGS) $(INCFLAGS) $(*F).c
  25.